home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue30 / bdeorx / BDEDORX.ZIP / RestUser / UserRest.dpr < prev   
Encoding:
Text File  |  1997-10-26  |  275 b   |  17 lines

  1. program UserRest;
  2.  
  3. uses
  4.   Forms,
  5.   UserRes1 in 'USERRES1.PAS' {MainForm};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   {$IFDEF WIN32}
  11.   Application.Initialize;
  12.   {$ENDIF}
  13.   Application.Title := 'UserRestructor';
  14.   Application.CreateForm(TMainForm, MainForm);
  15.   Application.Run;
  16. end.
  17.